home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / programming / c / pmm / pmm-startup < prev    next >
Text File  |  1999-11-30  |  2KB  |  56 lines

  1. ; $VER: PMM-Startup V1.2 (10.11.1999) by Michaela Prüß
  2. ; this is a complete startup-script for PMM
  3. ; written by Michaela Prüß in December 1998
  4. ; (c) 1998, 1999 by Michaela Prüß
  5.  
  6. ; if not startet from pmm-root-dir, absolut path must included
  7.  
  8. Assign Pmm: ""
  9.  
  10. ; Find the Project-Files
  11.  
  12. If not exists
  13.   MakeDir Pmm:Err
  14.   MakeDir Pmm:Developer/Lib
  15. EndIf
  16.  
  17. The next two assign's used by me for own includes and the
  18. sourcedir's. I think that I don't include anything that use
  19. this assigns. If I make an error and the called from everywhere
  20. you knwo the meaning of them now.
  21.  
  22. ; Assign include: vinclude:
  23. ; Assign proj: <my mainpath>
  24.  
  25. ; Add the dis with binaries and scripts to search-path
  26.  
  27. Path Pmm: Pmm:Bin Pmm:Batch ADD
  28.  
  29. ; Add the FD-Files (better copy them and forget this)
  30.  
  31. Assign FD: Pmm:Developer/FD ADD
  32. Assign Lib: Pmm:Developer/Lib
  33.  
  34. ; The next lines may be not useable for everybody. I include
  35. ; them only as demo what to do if Pmm is the only used tool
  36. ; on the system. I use them since the last makefile is deleted
  37. ; Remember: unalias unset any alias
  38. ;
  39. ; The commandreplace with alias is the best way to change them
  40. ; wihout really changes on the system. PmmLibr emulate both
  41. ; commands without problems. But "make <prog> ALL" don't work,
  42. ; that must write in Pmm-syntax as make <prog> -o all. The alias
  43. ; is because because I forget often to write the "new" command
  44. ;
  45. ; Make <name>      now uses Pmm
  46. ; Alib and Libr    now replaced with PmmLibr
  47.  
  48. Alias   Make    "Pmm -o 40 -q 88 -p "
  49. Alias   Alib    PmmLibr
  50. Alias   Libr    PmmLibr
  51.  
  52. ; if not set at other position these lines for PIPE
  53.  
  54. ; Set _mchar ","
  55. ; Set _pchar "|"
  56.